home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Dev / gcc263-src.lha / gcc-2.6.3 / config / pa / xm-pahiux.h < prev    next >
C/C++ Source or Header  |  1994-07-13  |  2KB  |  68 lines

  1. /* Configuration for GNU C-compiler for PA-RISC on HI-UX.
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU CC.
  5.  
  6. GNU CC is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU CC is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU CC; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20.  
  21. /* HI-UX is a flavor of System V */
  22. #define USG
  23.  
  24. /* Use System V memory functions.  */
  25. #define bcopy(a,b,c) memcpy (b,a,c)
  26. #define bzero(a,b) memset (a,0,b)
  27. #define bcmp(a,b,c) memcmp (a,b,c)
  28.  
  29. #define rindex strrchr
  30. #define index strchr
  31.  
  32. /* #defines that need visibility everywhere.  */
  33. #define FALSE 0
  34. #define TRUE 1
  35.  
  36. /* This describes the machine the compiler is hosted on.  */
  37. #define HOST_BITS_PER_CHAR 8
  38. #define HOST_BITS_PER_SHORT 16
  39. #define HOST_BITS_PER_INT 32
  40. #define HOST_BITS_PER_LONG 32
  41. #define HOST_BITS_PER_LONGLONG 64
  42.  
  43. /* Doubles are stored in memory with the high order word first.  This
  44.    matters when cross-compiling.  */
  45. #define HOST_WORDS_BIG_ENDIAN 1
  46.  
  47. /* Place any machine-dependent include files here, in case we
  48.    are bootstrapping.  */
  49.  
  50. /* target machine dependencies.
  51.    tm.h is a symbolic link to the actual target specific file.   */
  52. #include "tm.h"
  53.  
  54. /* Arguments to use with `exit'.  */
  55. #define SUCCESS_EXIT_CODE 0
  56. #define FATAL_EXIT_CODE 33
  57.  
  58. /* Don't try to use sys_siglist.  */
  59. #define NO_SYS_SIGLIST
  60.  
  61. /* HP's compiler has problems with enum bitfields.  */
  62. #define ONLY_INT_FIELDS
  63.  
  64. /* If not compiled with GNU C, use C alloca.  */
  65. #ifndef __GNUC__
  66. #define USE_C_ALLOCA
  67. #endif
  68.